主题 - 一
🎨 将 Atom 的 One Dark 和 One Light UI 以及语法主题移植到 Sublime Text 的方案 ⚡.
详情
安装
- 总计 10K
- Win 5K
- Mac 3K
- Linux 2K
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | 6月22日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 3 | 4 | 1 | 3 | 4 | 5 | 3 | 4 | 5 | 0 | 4 | 2 | 5 | 5 | 7 | 2 | 1 | 4 | 6 | 4 | 3 | 0 | 1 | 1 | 0 | 3 | 4 | 4 | 2 | 1 | 4 | 5 | 11 | 7 | 6 | 9 | 8 | 2 | 2 | 8 | 4 | 1 | 3 | 4 | 2 | 0 |
Mac | 2 | 2 | 4 | 2 | 1 | 3 | 2 | 2 | 2 | 1 | 0 | 1 | 0 | 2 | 1 | 2 | 1 | 0 | 3 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 2 | 1 | 1 | 2 | 3 | 1 | 3 | 1 | 0 | 0 | 0 | 1 | 2 | 3 | 0 | 0 | 0 |
Linux | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 2 | 0 | 0 | 2 | 2 | 1 | 0 | 1 | 1 | 1 | 2 | 3 | 0 | 2 | 1 | 1 | 0 | 2 | 2 | 0 | 2 | 4 | 2 | 1 | 5 | 2 | 4 | 2 | 0 | 1 | 0 | 2 | 0 | 0 | 3 | 1 | 1 |
Readme
One Theme
🎨 将 Atom 的 One Dark 和 One Light UI 以及语法主题移植到 ST4 和 ST3.2+ 的方案 ⚡.
该插件包含两个色彩方案 One Dark
和 One Light
,以及一个自适应主题。请确保禁用或删除相同名称的任何其他色彩方案,即 https://packagecontrol.sublime.net.cn/packages/One%20Dark%20Color%20Scheme。
安装
首选项
首选项以最接近 Atom 的外观,添加到您的用户设置(如果您希望的话)。
{
"always_show_minimap_viewport": true,
"animation_enabled": false,
"caret_extra_bottom": 2,
"caret_extra_top": 1,
"caret_style": "blink",
"enable_tab_scrolling": false,
"highlight_line": true,
"highlight_modified_tabs": true,
"indent_guide_options": [
"draw_normal",
"solid"
],
"line_padding_bottom": 2,
"line_padding_top": 1,
"margin": 0,
// ST4-specific
"highlight_gutter": false,
"show_scroll_tabs_buttons": false,
"show_tabs_dropdown_button": false,
"show_new_tab_button": false,
}
ST4 引入了自动深色/浅色模式切换,运行 UI: Select Theme
和 UI: Select Color Scheme
,选择 自动
然后继续。或者将其添加到您的用户设置
{
"theme": "auto",
"dark_theme": "One.sublime-theme",
"light_theme": "One.sublime-theme",
"color_scheme": "auto",
"dark_color_scheme": "One Dark.sublime-color-scheme",
"light_color_scheme": "One Light.sublime-color-scheme",
}
自定义
对于 ST4,从命令面板运行 UI: Customize Theme
,对于 ST3,导航到 首选项 > 软件包设置 > 主题 - 一 > 自定义
。参阅 https://text.sublime.net.cn/docs/themes.html#customization。
以下是一个示例覆盖
{
"variables": {
// darker borders with medium-dark color schemes
"border-color": "color(var(ui-bg) l(- 8%))",
},
"rules": [
// Highlight the top border of the focused tab instead of the left one
{
"class": "tab_control",
"layer2.inner_margin": [0, 2, 0, 0],
},
// ST4: Match the color of the tab connector to that of the tab
{
"class": "tab_connector",
"tint_index": 0,
},
// Hide sidebar's vcs status icons
{
"class": "vcs_status_badge",
"layer0.opacity": 0.0,
},
// Show panel's close button
{
"class": "panel_close_button",
"content_margin": 8,
"layer0.opacity": 1.0
},
]
}
致谢
https://github.com/andresmichel/one-dark-theme 对我创建此插件非常有帮助。